Loading TOC...

MarkLogic 12 Product Documentation
DELETE /manage/v2/clusters/{id|name}/dynamic-hosts

Summary

This resource permanently removes a list of dynamic hosts from the cluster.

URL Parameters
format The format of the delete data. Can be either html, json, or xml (default). This value overrides the Accept header if both are present.
Request Headers
Accept The expected MIME type of the request body. If the format? parameter is present, it takes precedence over the Accept header.
Content-type The MIME type of the data in the request body. Depending upon the value of the format parameter or Accept header, one of application/xml, application/json, or text/html.
Response Headers
Content-type The MIME type of the data in the response body. Depending upon the value of the format parameter or Accept header, one of application/xml, application/json, or text/html.

Response

Upon success, a status code of 204 (No Content) returned. If the payload is malformed or the group does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.

Required Privileges

This operation requires the manage-admin role, or the following privilege:

http://marklogic.com/xdmp/privileges/manage-admin

http://marklogic.com/xdmp/privileges/remove-dynamic-hosts

Example


  curl --anyauth --user admin:admin -i -X DELETE localhost:8002/manage/v2/clusters/Default/dynamic-hosts \
    -H "Accept: application/json"   -H "Content-Type: application/json"  \
    -d '{"dynamic-hosts":{"dynamic-host":"16944064802357544651", "dynamic-host":"16944064802357544659"}}'
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.